home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr37 / ho5m.zip / HOMENU.BAT < prev    next >
DOS Batch File  |  1995-03-02  |  883b  |  51 lines

  1. @echo off
  2. rem
  3. rem  MAIN  another sample Hands On menu
  4. rem  updated Fri  09-23-1994  16:58:20
  5.  
  6. :start
  7. homnu menu "t:Main Menu" "Phone matters" "Start_stop" "Other" "Manuals & Misc" "Read README.TXT" "Quit"
  8. if errorlevel == 6 goto :end
  9. if errorlevel == 5 goto :readme
  10. if errorlevel == 4 goto :help
  11. if errorlevel == 3 goto :other
  12. if errorlevel == 2 goto :on_off
  13. if errorlevel == 1 goto :phone
  14. goto :end
  15.  
  16. :phone
  17. rem     select an entry to dial
  18. rem 1sthand dial
  19. rem 1sthand call
  20. phone.bat
  21. goto :start
  22.  
  23.  
  24. :on_off
  25. rem          one of the menu batch files
  26. rem mapmem
  27. rem pause
  28. on_off.bat
  29. goto :start
  30.  
  31. :other
  32. rem          the misc menu batch file
  33. rem mapmem
  34. rem pause
  35. homisc.bat
  36. goto :start
  37.  
  38. :help
  39. rem        on-line help and access to the manuals
  40. 1sthand
  41. goto :start
  42.  
  43. :readme
  44. 1sthand readme.TXT
  45. goto :start
  46.  
  47. :end
  48. cls
  49. rem q homenu.bat
  50. rem END
  51.